Autogenerated HTML docs for v1.5.0-rc1-gdf1b
diff --git a/git-cherry-pick.html b/git-cherry-pick.html index f7f0449..7fc474e 100644 --- a/git-cherry-pick.html +++ b/git-cherry-pick.html
@@ -289,6 +289,8 @@ <dd> <p> Commit to cherry-pick. + For a more complete list of ways to spell commits, see + "SPECIFYING REVISIONS" section in <a href="git-rev-parse.html">git-rev-parse(1)</a>. </p> </dd> <dt> @@ -360,7 +362,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 06-Oct-2006 01:00:24 UTC +Last updated 18-Jan-2007 06:23:58 UTC </div> </div> </body>
diff --git a/git-cherry-pick.txt b/git-cherry-pick.txt index 875edb6..3149d08 100644 --- a/git-cherry-pick.txt +++ b/git-cherry-pick.txt
@@ -19,6 +19,8 @@ ------- <commit>:: Commit to cherry-pick. + For a more complete list of ways to spell commits, see + "SPECIFYING REVISIONS" section in gitlink:git-rev-parse[1]. -e|--edit:: With this option, `git-cherry-pick` will let you edit the commit
diff --git a/git-diff.html b/git-diff.html index 8fb0e46..899b6e2 100644 --- a/git-diff.html +++ b/git-diff.html
@@ -327,6 +327,8 @@ <p>Just in case if you are doing something exotic, it should be noted that all of the <commit> in the above description can be any <tree-ish>.</p> +<p>For a more complete list of ways to spell <commit>, see +"SPECIFYING REVISIONS" section in <a href="git-rev-parse.html">git-rev-parse(1)</a>.</p> </div> <h2>OPTIONS</h2> <div class="sectionbody"> @@ -817,7 +819,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 26-Dec-2006 09:11:34 UTC +Last updated 18-Jan-2007 06:23:58 UTC </div> </div> </body>
diff --git a/git-diff.txt b/git-diff.txt index 8977877..6a098df 100644 --- a/git-diff.txt +++ b/git-diff.txt
@@ -47,6 +47,9 @@ noted that all of the <commit> in the above description can be any <tree-ish>. +For a more complete list of ways to spell <commit>, see +"SPECIFYING REVISIONS" section in gitlink:git-rev-parse[1]. + OPTIONS -------
diff --git a/git-format-patch.html b/git-format-patch.html index a5104ce..133b40e 100644 --- a/git-format-patch.html +++ b/git-format-patch.html
@@ -283,7 +283,9 @@ <p>Prepare each commit between <since> and <until> with its patch in one file per commit, formatted to resemble UNIX mailbox format. If ..<until> is not specified, the head of the current working -tree is implied.</p> +tree is implied. For a more complete list of ways to spell +<since> and <until>, see "SPECIFYING REVISIONS" section in +<a href="git-rev-parse.html">git-rev-parse(1)</a>.</p> <p>The output of this command is convenient for e-mail submission or for use with <a href="git-am.html">git-am(1)</a>.</p> <p>Each output file is numbered sequentially from 1, and uses the @@ -469,7 +471,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 17-Jan-2007 20:25:05 UTC +Last updated 18-Jan-2007 06:23:59 UTC </div> </div> </body>
diff --git a/git-format-patch.txt b/git-format-patch.txt index 23acb47..574cf76 100644 --- a/git-format-patch.txt +++ b/git-format-patch.txt
@@ -20,7 +20,9 @@ Prepare each commit between <since> and <until> with its patch in one file per commit, formatted to resemble UNIX mailbox format. If ..<until> is not specified, the head of the current working -tree is implied. +tree is implied. For a more complete list of ways to spell +<since> and <until>, see "SPECIFYING REVISIONS" section in +gitlink:git-rev-parse[1]. The output of this command is convenient for e-mail submission or for use with gitlink:git-am[1].
diff --git a/git-log.html b/git-log.html index 6ee7c7a..5804b56 100644 --- a/git-log.html +++ b/git-log.html
@@ -444,6 +444,9 @@ Show only commits between the named two commits. When either <since> or <until> is omitted, it defaults to <tt>HEAD</tt>, i.e. the tip of the current branch. + For a more complete list of ways to spell <since> + and <until>, see "SPECIFYING REVISIONS" section in + <a href="git-rev-parse.html">git-rev-parse(1)</a>. </p> </dd> <dt> @@ -595,7 +598,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 15-Jan-2007 06:12:31 UTC +Last updated 18-Jan-2007 06:24:00 UTC </div> </div> </body>
diff --git a/git-log.txt b/git-log.txt index 60610f9..b802946 100644 --- a/git-log.txt +++ b/git-log.txt
@@ -34,6 +34,9 @@ Show only commits between the named two commits. When either <since> or <until> is omitted, it defaults to `HEAD`, i.e. the tip of the current branch. + For a more complete list of ways to spell <since> + and <until>, see "SPECIFYING REVISIONS" section in + gitlink:git-rev-parse[1]. -p:: Show the change the commit introduces in a patch form.
diff --git a/git-rev-parse.html b/git-rev-parse.html index d452f1e..0397fce 100644 --- a/git-rev-parse.html +++ b/git-rev-parse.html
@@ -548,6 +548,17 @@ </li> <li> <p> +A ref followed by the suffix <em>@</em> with an ordinal specification + enclosed in a brace pair (e.g. <em>{1}</em>, <em>{15}</em>) to specify + the n-th prior value of that ref. For example <em>master@{1}</em> + is the immediate prior value of <em>master</em> while <em>master@{5}</em> + is the 5th prior value of <em>master</em>. This suffix may only be used + immediately following a ref name and the ref must have an existing + log ($GIT_DIR/logs/<ref>). +</p> +</li> +<li> +<p> A suffix <em>^</em> to a revision parameter means the first parent of that commit object. <em>^<n></em> means the <n>th parent (i.e. <em>rev^</em> @@ -681,7 +692,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 08-Nov-2006 01:33:31 UTC +Last updated 18-Jan-2007 06:24:01 UTC </div> </div> </body>
diff --git a/git-rev-parse.txt b/git-rev-parse.txt index 4eaf5a0..aeb37b6 100644 --- a/git-rev-parse.txt +++ b/git-rev-parse.txt
@@ -152,6 +152,14 @@ used immediately following a ref name and the ref must have an existing log ($GIT_DIR/logs/<ref>). +* A ref followed by the suffix '@' with an ordinal specification + enclosed in a brace pair (e.g. '\{1\}', '\{15\}') to specify + the n-th prior value of that ref. For example 'master@\{1\}' + is the immediate prior value of 'master' while 'master@\{5\}' + is the 5th prior value of 'master'. This suffix may only be used + immediately following a ref name and the ref must have an existing + log ($GIT_DIR/logs/<ref>). + * A suffix '{caret}' to a revision parameter means the first parent of that commit object. '{caret}<n>' means the <n>th parent (i.e. 'rev{caret}'
diff --git a/git-revert.html b/git-revert.html index 3238f54..f9d38dd 100644 --- a/git-revert.html +++ b/git-revert.html
@@ -289,6 +289,8 @@ <dd> <p> Commit to revert. + For a more complete list of ways to spell commit names, see + "SPECIFYING REVISIONS" section in <a href="git-rev-parse.html">git-rev-parse(1)</a>. </p> </dd> <dt> @@ -343,7 +345,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 03-Oct-2006 08:41:25 UTC +Last updated 18-Jan-2007 06:24:00 UTC </div> </div> </body>
diff --git a/git-revert.txt b/git-revert.txt index 71f7815..8081bba 100644 --- a/git-revert.txt +++ b/git-revert.txt
@@ -19,6 +19,8 @@ ------- <commit>:: Commit to revert. + For a more complete list of ways to spell commit names, see + "SPECIFYING REVISIONS" section in gitlink:git-rev-parse[1]. -e|--edit:: With this option, `git-revert` will let you edit the commit
diff --git a/git-show.html b/git-show.html index 530bf55..257e4b7 100644 --- a/git-show.html +++ b/git-show.html
@@ -295,6 +295,8 @@ <dd> <p> The name of the object to show. + For a more complete list of ways to spell object names, see + "SPECIFYING REVISIONS" section in <a href="git-rev-parse.html">git-rev-parse(1)</a>. </p> </dd> <dt> @@ -562,7 +564,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 31-Dec-2006 01:19:05 UTC +Last updated 18-Jan-2007 06:24:01 UTC </div> </div> </body>
diff --git a/git-show.txt b/git-show.txt index c210b9a..9051951 100644 --- a/git-show.txt +++ b/git-show.txt
@@ -32,6 +32,8 @@ ------- <object>:: The name of the object to show. + For a more complete list of ways to spell object names, see + "SPECIFYING REVISIONS" section in gitlink:git-rev-parse[1]. include::pretty-formats.txt[]
diff --git a/gitk.html b/gitk.html index e835d27..afa99c4 100644 --- a/gitk.html +++ b/gitk.html
@@ -330,6 +330,8 @@ meaning show from the given revision and back, or it can be a range in the form "<em><from></em>..<em><to></em>" to show all revisions between <em><from></em> and back to <em><to></em>. Note, more advanced revision selection can be applied. + For a more complete list of ways to spell object names, see + "SPECIFYING REVISIONS" section in <a href="git-rev-parse.html">git-rev-parse(1)</a>. </p> </dd> <dt> @@ -423,7 +425,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 03-Oct-2006 08:41:39 UTC +Last updated 18-Jan-2007 06:24:02 UTC </div> </div> </body>
diff --git a/gitk.txt b/gitk.txt index f1aeb07..6e2a878 100644 --- a/gitk.txt +++ b/gitk.txt
@@ -47,6 +47,8 @@ meaning show from the given revision and back, or it can be a range in the form "'<from>'..'<to>'" to show all revisions between '<from>' and back to '<to>'. Note, more advanced revision selection can be applied. + For a more complete list of ways to spell object names, see + "SPECIFYING REVISIONS" section in gitlink:git-rev-parse[1]. <path>::